home *** CD-ROM | disk | FTP | other *** search
- #include "bbs.h"
-
- int PGoodbye(void)
- {
- int i,stat;
-
-
- for(i=10; i>=0; i--) {
- sprintf(GSTR1,"Last chance! Auto LOGOFF in %d SECS. Abort: (Enter)=yes? ",i);
- AEPutStr("\r\n");
- //if(AnsiColor)
- AEPutStr("A");
- AEPutStr(GSTR1);
- stat=ReadChar(1L);
- if(stat>0) {
- switch(stat) {
- case 'n': case 'N':
- AEPutStr("No\r\n\r\n");
- return(GOODBYE);
- case 'y': case 'Y': case '\n': case '\r':
- AEPutStr("Yes\r\n\r\n");
- return(SUCCESS);
- }
- }
- }
- AEPutStr("\r\n");
- return(GOODBYE);
- }
-